crypto/tls.clientHelloMsg.pskIdentities (field)

14 uses

	crypto/tls (current package)
		handshake_client.go#L343: 	hello.pskIdentities = []pskIdentity{identity}
		handshake_client_tls13.go#L239: 	if len(hs.hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L247: 			hs.hello.pskIdentities[0].obfuscatedTicketAge = ticketAge + hs.session.ageAdd
		handshake_client_tls13.go#L258: 			hs.hello.pskIdentities = nil
		handshake_client_tls13.go#L318: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L323: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_messages.go#L93: 	pskIdentities                    []pskIdentity
		handshake_messages.go#L269: 			if len(m.pskIdentities) > 0 { // pre_shared_key must be the last extension
		handshake_messages.go#L274: 						for _, psk := range m.pskIdentities {
		handshake_messages.go#L564: 				m.pskIdentities = append(m.pskIdentities, psk)
		handshake_server_tls13.go#L242: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L246: 	if len(hs.clientHello.pskIdentities) == 0 {
		handshake_server_tls13.go#L250: 	for i, identity := range hs.clientHello.pskIdentities {